@media (min-width: 1120px) {
    .ocdi .ocdi__gl-item-container {
        margin-right: -30px;
    }

    .ocdi .ocdi__gl-item {
        width: calc(25% - 30px);
        margin: 0 30px 30px 0;
    }
}

.extendthemes-progress-bar {
    position: relative;
    height: 10px;
    display: block;
    width: 100%;
    background-color: #23282d;
    border-radius: 2px;
    margin: .5rem 0 1rem 0;
    overflow: hidden;
}

.extendthemes-progress-bar .indeterminate {
    background-color: #5eb28e;
}

.extendthemes-progress-bar .indeterminate:before {
    content: '';
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: indeterminate 2s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
    animation: indeterminate 2s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

@-webkit-keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%
    }

    100% {
        left: 100%;
        right: -90%
    }
}

@keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%
    }

    100% {
        left: 100%;
        right: -90%
    }
}

p.ocdi__ajax-loader.js-ocdi-ajax-loader span.extendthemes-progress-bar {
    width: 50%;
}
