﻿.Loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.LoaderLogo {
    object-fit: contain;
    opacity: 0;
    max-width: 150px;
    animation-delay: 1s;
    animation-name: hideshow;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.LoaderText {
    position: absolute;
    margin-bottom: 160px;
    text-align: center;
}

@keyframes hideshow {
    50% {
        opacity: 1;
    }
}
