﻿.rollence-loader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.loader-logo {
    width: 160px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-in-out;
}

.loader {
    width: 150px;
    height: 15px;
    border-radius: 20px;
    background: repeating-linear-gradient(135deg, #0C5C77 0 10px, #1689a6 0 20px) 0/0% no-repeat, repeating-linear-gradient(135deg, #ddd 0 10px, #eee 0 20px) 0/100%;
    animation: l3 2s infinite;
}

@keyframes l3 {
    100% {
        background-size: 100%
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
