﻿.loadingImage {   
    display: inline-block; /* Display as inline-block to keep the loader below */
    margin-bottom: 10px; /* Add margin to push the loader down */
    max-width: 45px;
    max-height: 45px;
}

.loader {
    width: 25% !important;
    display: block;
    position: relative;
    height: 12px;
    width: 80%;
    border: 1px solid #3272db;
    border-radius: 10px;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .loader {
        width: 80% !important;
    }
}

.loader::after {
    content: '';
    width: 40%;
    height: 100%;
    background: #3272db;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    animation: animloader 1s linear infinite;
}

@keyframes animloader {
    0% {
        left: 0;
        transform: translateX(-100%);
    }

    100% {
        left: 100%;
        transform: translateX(0%);
    }
}
