﻿.f-loader__container {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background: #00000047;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000005;
}

.f-loader__wrapper {
    width: 285px;
    height: 160px;
    background: #ffffffad;
    border-radius: 8px;
    box-shadow: 0 0 10px 0px rgb(0 0 0 / 6%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.f-loader__wrapper--logo {
    margin-bottom: 20px;
}

    .f-loader__wrapper--logo img {
        width: 150px;
        margin: auto;
        display: block;
    }

.f-loader__bullets {
    display: flex;
    justify-content: center;
    opacity: 0;
    -webkit-animation: loading-dots-fadein .5s linear forwards;
    animation: loading-dots-fadein .5s linear forwards;
    direction: ltr
}

.f-loader__bullet {
    border-radius: 100%;
    overflow: hidden;
    background-color: #822b90;
    width: 7px;
    height: 7px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px;
    -webkit-animation: loading-dots-middle-dots .5s ease-in-out infinite;
    animation: loading-dots-middle-dots .5s ease-in-out infinite
}

    .f-loader__bullet:first-child {
        -webkit-animation: loading-dots-first-dot .5s ease-in-out infinite;
        animation: loading-dots-first-dot .5s ease-in-out infinite;
        opacity: 0;
        -webkit-transform: translate(-14px);
        transform: translate(-14px)
    }

    .f-loader__bullet:last-child {
        -webkit-animation: loading-dots-last-dot .5s ease-in-out infinite;
        animation: loading-dots-last-dot .5s ease-in-out infinite
    }

@-webkit-keyframes loading-dots-fadein {
    to {
        opacity: 1
    }
}

@keyframes loading-dots-fadein {
    to {
        opacity: 1
    }
}

@-webkit-keyframes loading-dots-first-dot {
    to {
        -webkit-transform: translateX(14px);
        transform: translateX(14px);
        opacity: 1
    }
}

@keyframes loading-dots-first-dot {
    to {
        -webkit-transform: translateX(14px);
        transform: translateX(14px);
        opacity: 1
    }
}

@-webkit-keyframes loading-dots-middle-dots {
    to {
        -webkit-transform: translateX(14px);
        transform: translateX(14px)
    }
}

@keyframes loading-dots-middle-dots {
    to {
        -webkit-transform: translateX(14px);
        transform: translateX(14px)
    }
}

@-webkit-keyframes loading-dots-last-dot {
    to {
        -webkit-transform: translateX(28px);
        transform: translateX(28px);
        opacity: 0
    }
}

@keyframes loading-dots-last-dot {
    to {
        -webkit-transform: translateX(28px);
        transform: translateX(28px);
        opacity: 0
    }
}

.c-search {
    position: relative;
    height: 100%
}
