﻿
/* Loader */
.fullpage-loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 50px;
    min-height: 100vh;
}

/* Loader text */
.loader-text {
    margin-top: 3rem;
    font-family: "Sora";
    font-weight: bold;
    font-size: 0.875rem;
    color: #303539;
    text-align: center;
}

.loader-text span {
    position: relative;
    left: 2px;
    display: inline-block;
    width: 2.5px;
    height: 2px;
    border-radius: 5px;
    background: #303539;
    opacity: 0;
    animation: first-dot 3s infinite;
    transition: all 0.5s ease-in-out;
}

.loader-text span::after,
.loader-text span::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
}

.loader-text span::before {
    left: 4px;
    width: 2.5px;
    height: 2px;
    border-radius: 2.5px;
    background: #303539;
    animation: middle-dot 3s infinite;
}

.loader-text span::after {
    left: 8px;
    width: 2.5px;
    height: 2px;
    border-radius: 2.5px;
    background: #303539;
    animation: last-dot 3s infinite;
}

@keyframes first-dot {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes middle-dot {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes last-dot {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

/* //// */
.awwie-logo {
    position: relative;
    overflow: hidden;
    width: 262px;
    height: 102px;
    margin: 0 auto;
    /*background: #eee;*/
    display: flex;
    justify-content: center;
    font-family: 'Open Sans';
}

.awwie-logo-icon {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    fill: #fff;
}

.awwie-logo-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 262px;
    height: 102px;
}

.awwie-logo-fill-icon {
    width: 62px;
    height: 102px;
/*    background: #cc071e;*/
    top: 102px;
    transform: translate(0, calc(var(--blazor-load-percentage, 0%) * -1));
    transition: all 1s ease-in-out;
}

.awwie-logo-fill-text {
    width: 200px;
    height: 102px;
/*    background: #303539;*/
    left: 62px;
    top: 102px;
    transform: translate(0, calc(var(--blazor-load-percentage, 0%) * -1));
    transition: all 1s ease-in-out;
}
