@font-face {
    font-family: 'Segoe UI Local';
    src: local('Segoe UI');
}

body {
    font-family: 'Segoe UI Local', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
    background-color: #f3f2f1;
    margin: 0;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
}

@supports (height: 100dvh) {
    .mobile-vh {
        min-height: 100dvh;
    }
}

.ms-loader {
    display: block;
    width: 100%;
    height: 4.5px;
    position: relative;
    overflow: hidden;
    margin-top: 4px;
}

.ms-dot {
    position: absolute;
    width: 4.5px;
    height: 4.5px;
    background-color: #0067b8;
    border-radius: 50%;
    opacity: 0;
    top: 0;
    animation: ms-fly 1.8s infinite;
}

.ms-dot:nth-child(1) { animation-delay: 0s; }
.ms-dot:nth-child(2) { animation-delay: 0.1s; }
.ms-dot:nth-child(3) { animation-delay: 0.2s; }
.ms-dot:nth-child(4) { animation-delay: 0.3s; }
.ms-dot:nth-child(5) { animation-delay: 0.4s; }

@keyframes ms-fly {
    0% {
        left: -10%;
        opacity: 0;
        animation-timing-function: cubic-bezier(0.01, 0.5, 0.2, 1);
    }
    10% {
        opacity: 1;
    }
    35% {
        left: 40%;
        animation-timing-function: linear;
    }
    65% {
        left: 60%;
        animation-timing-function: cubic-bezier(0.8, 0, 0.99, 0.5);
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 110%;
        opacity: 0;
    }
}