﻿/* BiImage Container */
.bi-image-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    line-height: 0; /* Resim altındaki boşluğu kaldırır */
}

/* Spinner Container */
.bi-image-spinner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
}

/* Spinner */
.bi-image-spinner-inner {
    width: 32px;
    height: 32px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: #3498db;
    border-radius: 50%;
    animation: bi-image-spin 1s linear infinite;
}

/* Image Styles */
.bi-image-blur {
    filter: blur(3px);
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
}

.bi-image-loaded {
    filter: blur(0);
    opacity: 1;
}

/* Animation */
@keyframes bi-image-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .bi-image-spinner-inner {
        width: 24px;
        height: 24px;
        border-width: 3px;
    }

    .bi-image-blur {
        filter: blur(2px);
    }
}
