  .unique-construction-message {
    text-align: center;
    padding: 20px;
    animation: unique-fadeIn 2s ease-in-out;
}

.unique-loading-circle {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.unique-spinner {
    width: 100%;
    height: 100%;
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-top: 8px solid #5677e9;
    border-radius: 50%;
    animation: unique-spin 1.5s linear infinite;
}

.unique-spinner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #5677e9;
    font-weight: bold;
}

.unique-construction-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.unique-construction-description {
    font-size: 16px;
    color: #666;
}

@keyframes unique-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes unique-fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*# sourceMappingURL=loading-circle.css.map */
/*# sourceURL=loading-circle.css */