.preloader-container {
    position: fixed;
    inset: 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
}

.preloader-image {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 42px;
    height: 42px;
    object-fit: contain;
    z-index: 2;
}

.preloader-spinner {
    width: 100%;
    height: 100%;
    animation: spin 1.2s linear infinite;
}

.preloader-circle {
    stroke: #000f85;
    stroke-linecap: round;
    stroke-width: 5;
    stroke-dasharray: 220;
    stroke-dashoffset: 60;
    fill: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
