/**
 * Theme Name: AriFort
 * Template: Divi
* Text Domain: arifort
* Domain Path: /assets/lang
 */

.loader-sircip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader-sircip img {
    width: 150px; /
    border-radius: 50%; 
    animation: pulse 2s infinite ease-in-out;
}

.img-loader-sircip{
   border-radius: 50%;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}