.bb-image-wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
}

.bb-image-wrapper .bb-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    animation: loadinglogo 1.5s infinite ease-in-out;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
    margin: 0 auto;
}

.bb-image-wrapper .bb-image-placeholder svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: min(50%, 600px);;
}

.bb-image-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
}

@keyframes loadinglogo {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.3;
    }
}