.preloader_custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Keyframes for the animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}
@keyframes scaleAnimation {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
#logo_svg_preloader {
    animation:  bounce 1s infinite linear;
}
@media (max-width: 767px) {
    #logo_svg_preloader {
        width: 30%;
    }}

@media (min-width: 768px) {
    #logo_svg_preloader {
        width: 10%;
    }}