/*===============================
todo Preloader button
================================*/
#awag-ajaxscroll_block{
    display: flex;
    justify-content: center;
    margin: 30px 0 10px;
}

#load-more-product-link{
    position: relative;
    color:  #000000;
}
#load-more-product-link:before{
    position: absolute;
    content: "";
    background-image: url("../images/mehr_anzeigen.svg");
    background-size: 100%;
    display: block !important;
    opacity: 0.85;
}

#load-more-product.uc_preleader #load-more-product-link:before{
    animation: rotate 1.5s ease-in-out infinite;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
@media only screen and (min-width: 768px){
    #load-more-product-link:before {
        width: 30px;
        height: 30px;
        left: -40px;
        top: -5px;
    }
}
@media only screen and (min-width: 1366px){
    #load-more-product-link:before {
        width: 40px;
        height: 40px;
        left: -50px;
        top: -10px;
    }
}
@media only screen and (max-width: 767px){
    #load-more-product-link:before {
        width: 30px;
        height: 30px;
        left: -40px;
        top: -4px;
    }
    #awag-ajaxscroll_block {
        padding-left: 30px;
    }
}

/*===============================
todo Pagination
================================*/
.pages .pages-items .item.pages-item-next, .pages .pages-items .item.pages-item-previous{
    font-size: 2.6rem;
}

@media only screen and (max-width: 767px){
    .page-products .toolbar-products .pages ul.items {
        justify-content: center;
    }
}


