﻿
/* Loader */
.fullpage-loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 50px;
}

/* Loader text */
.loader-text {
    margin-top: 3rem;
    font-family: "Barlow";
    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: 2.5px;
        border-radius: 2.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: 5px;
            width: 2.5px;
            height: 2.5px;
            border-radius: 2.5px;
            background: #303539;
            animation: middle-dot 3s infinite;
        }

        .loader-text span::after {
            left: 10px;
            width: 2.5px;
            height: 2.5px;
            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;
    }
}
/* //// */
.conway-logo {
    position: relative;
    overflow: hidden;
    width: 262px;
    height: 102px;
    margin: 0 auto;
    background: #eee;
    display: flex;
}

.conway-logo-icon {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    fill: #fff;
}

.conway-logo-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 262px;
    height: 102px;
}

.conway-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;
}

.conway-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;
}
