/* style.css */

#custom-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	transition: all 0.5s ease;
}

#custom-preloader img {
    max-width: 100px; /* Adjust the maximum width of the image */
    max-height: 100px; /* Adjust the maximum height of the image */
	transition: all 0.5s ease;
}

/* Show page content when JavaScript is disabled or fails */

.no-js #custom-preloader {
    display: none;
}

.js #custom-preloader {
	display: flex;
}

.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0; /* Initially hidden */
    height: 10px; /* Height of the loading bar */
    background-color: #007bff; /* Loading bar color */
    transition: width 0.3s ease; /* Smooth transition for width changes */
}