.animationLoading {
    background: #fff;
    border-radius: 3px;
    display: block;
    height: 100%;
    padding: 10px
}

.animationLoading .four,
.animationLoading .one,
.animationLoading .three,
.animationLoading .two {
    position: relative;
    background-color: #ccc;
    height: 6px;
    animation-name: d;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    background: linear-gradient(90deg, #f3f3f3 8%, #d9d9d9 18%, #f3f3f3 33%)
}

.animationLoading .one {
    width: 100%;
    height: 400px
}

.animationLoading .two {
    left: 0;
    width: 80%;
    margin-top: 15px
}

.animationLoading .three {
    left: 0;
    width: 90%;
    margin-top: 15px
}

.animationLoading .four {
    left: 0;
    width: 50%;
    margin-top: 15px
}

@keyframes d {
    0% {
        background-position: -468px 0
    }

    to {
        background-position: 468px 0
    }
}

@media (max-width: 600px) {
    .Pageloading {
        width: 200px
    }
}

.products-loader img {
    height: 260px !important;
    width: auto;
    display: block;
    margin: auto;
}