.loader-container
{
    display: none;
}
.property-list-loader{
    position: absolute !important;
    margin: auto !important;
}
.loader {
    position: absolute;
    top: 50%;
    left: 48%;
}

.line {
    animation: expand 1s ease-in-out infinite;
    border-radius: 10px;
    display: inline-block;
    transform-origin: center center;
    margin: 0 3px;
    width: 1px;
    height: 25px;
}

.line:nth-child(1) {
    background: #27ae60;
}

.line:nth-child(2) {
    animation-delay: 180ms;
    background: #f1c40f;
}

.line:nth-child(3) {
    animation-delay: 360ms;
    background: #e67e22;
}

.line:nth-child(4) {
    animation-delay: 540ms;
    background: #2980b9;
}

@keyframes expand {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(2);
    }
}

.data-loader {
    position: fixed;
    /*background: #FFF;*/
    margin: 0 auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-loader::before {
    content: '';
    display: block;
    background-image: url('../assets/icons/Q-logo.svg');
    height: 130px;
    width: 100px;
    -webkit-animation: pageloader 1.5s infinite;
    animation: pageloader 1.5s infinite;
}
