﻿#global-loader1 {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
}

.loading-progress {
    width: 64px;
    height: 64px;
}

@media (min-width: 480px) {
    .loading-progress {
        width: 80px;
        height: 80px;
    }
}

.loading-progress circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.loading-progress .bg {
    stroke: #ffe5b4;
}

.loading-progress .spinner {
    stroke: orange;
    stroke-dasharray: 220;
    stroke-dashoffset: 0;
    animation: spin 1.5s linear infinite;
    transform-origin: 50% 50%;
}

.loading-text {
    margin-top: 1rem;
    font-size: 1rem;
    color: #ff8000;
    font-family: sans-serif;
    max-width: 90vw;
}

@keyframes spin {
    0% {
        stroke-dashoffset: 220;
        transform: rotate(0deg);
    }

    100% {
        stroke-dashoffset: 0;
        transform: rotate(360deg);
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    @media (min-width: 480px) {
        .loading-progress[b-5o9cpux7o8] {
            width: 80px;
            height: 80px;
        }
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    @media (min-width: 480px) {
        .loading-progress[b-5o9cpux7o8] {
            width: 80px;
            height: 80px;
        }
    }
}

/* Hide "Property Category" column on screens smaller than 768px */
@media (max-width: 767.98px) {
    .hide-mobile {
        display: none !important;
    }
}
