.search-tabs {
    margin: 0 30px 20px;
}

@media (min-width: 1400px) {
    .search-tabs {
        margin-top: 40px;
    }
}

.search-tabs .btn {
    border-radius: 4px;
    color: #213B59;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}

@media (max-width: 767px) {
    .search-tabs .btn {
        padding-top: 6px;
        padding-bottom: 6px;
    }
}

@media (min-width: 768px) {
    .search-tabs .btn {
        padding-top: 0;
        padding-bottom: 0;
        height: 72px;
    }
}

.search-tabs .btn {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .search-tabs .btn:not(:last-child) {
        margin-right: 10px;
    }
}

@media (min-width: 992px) {
    .search-tabs .btn:not(:last-child) {
        margin-right: 30px;
    }
}

.search-tabs .btn-tab {
    border: 2px solid #213B59;
    background: #FFFFFF;
    font-weight: 500;
}

button[data-facet-id]:after {
    content: attr(data-count);
    padding-left: 3px;
}

.search-tabs .btn:hover {
    filter: drop-shadow(1px 1px 5px rgb(115 115 115));
}

.search-tabs .btn-tab.active {
    background: #213B59;
    color: #FFFFFF;
}

.search-tabs .btn-external {
    border: 2px solid #D5E7FC;
    background: #F0F7FF;
}

.search-tabs .btn-external span {
    font-size: 80%;
    margin-left: 5px;
}

@media (min-width: 768px) {
    .search-tabs .btn-external span {
        display: block;
        margin-left: 0;
    }
}

.facet-container-wrapper {
    /*display: none;*/
}

.search-feedback-filters-custom .sf-filter-info {
    margin: 0 0 0 16px;
}

@media (max-width: 991px) {
    .search-results-wrapper {
        margin-left: auto;
    }
}

@media (min-width: 1200px) {
    .search-results-wrapper, .search-results-summary-options-wrapper {
        max-width: 960px;
    }
}

.search-placeholder {
    display: none;
    background: white;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
}

.search-loader svg {
    color: #213B59;
    width: 3rem;
    height: 3rem;
}

.search-loader svg {
    animation-name: spin;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear; 
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

