.get-inspired-description strong {
    color: var(--primary);
    font-weight: 700;
}
.inspired-categories-tab .tab {
    border: 1px solid var(--primary);
    color: var(--primary);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}
.inspired-categories-tab .tab:hover,
.inspired-categories-tab .tab.active {
    background-color: var(--primary);
    color: var(--white);
}
.load-more-content {
    margin-top: -60px;
}
#ajaxLoader {
    position: relative;
}
#ajaxLoader::before {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    top: -226px;
    height: 225px;
    display: block;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    pointer-events: none;
}
/*Responsive - Mobile First*/
/* md */
@media (min-width: 768px) {
    #ajaxLoader::before {
        top: -351px;
        height: 350px;
    }
}