.main-shop {
    display: flex;
    flex-direction: column;
}
.main-shop #placeholder-category-banner {
    order: -1;
    margin-bottom: 20px;
}

.main-widget-container {
    min-height: 400px;  
    position: relative;
}
.main-widget-container.loading > * {
    display: none;
}
.main-widget-container.loading:before {
    content: '';
    color: var(--primary-color);
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}
/*.main-widget-container.loading:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    width: 56px;
    height: 20px;
    background: url('images/loader.svg') no-repeat;
    background-size: contain;
    top: 50%;
    left: 50%;
    margin-top: 30px;
    margin-left: -28px;
} */