﻿

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif !important;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('../../images/ffc-waitpage.jpg');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    z-index: -1;
}

    body::after {
        content: "";
        background: #00000087;
        position: absolute;
        top: 0px;
        right: 0;
        z-index: 1;
        height: 100vh;
        width: 100%;
    }

.loader-box {
    /*background: rgba(0, 0, 60, 0.85);*/
    padding: 30px 30px;
    border-radius: 20px;
    text-align: center;
    /*box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);*/
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.svg-container {
    /*   position: absolute;
                    top: 10%;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 600px;
                    z-index: 3;
                    */
    height: 190px;
}

.plane-icon {
    fill: #00d9ff;
    transform-origin: center;
}

.plane-motion {
    animation: moveplane 4s ease-in-out infinite;
}

@keyframes moveplane {
    0% {
        offset-distance: 0%;
    }

    50% {
        offset-distance: 50%;
    }

    100% {
        opacity: 0;
        offset-distance: 100%;
    }
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #1c3b51;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.2s linear infinite;
    margin: 0px auto 0px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

h1 {
    font-size: 26px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 20px;
}

text {
    font-size: 18px;
    font-weight: 500;
}

.dots {
    font-size: 22px;
    letter-spacing: 5px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.parent-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    min-width: 50%;
}

.search-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0px;
}

image {
    transform: translate(0px, -25px);
    filter: invert(1);
    height: 60px;
    width: auto;
}

@media screen and (min‑width:500px) and (max-width:768px) {
    .parent-search {
        width: 96% !important;
        min-width: 96% !important;
    }

    .loader-box {
        padding: 30px 10px !important;
    }
}

@media screen and (min-width:200px) and (max-width:499px) {
    .parent-search {
        width: 96% !important;
        min-width: 96% !important;
    }

    .loader-box {
        padding: 30px 10px !important;
    }

    .loader {
        width: 40px !important;
        height: 40px !important;
    }

    h1 {
        font-size: 20px !important;
        margin-bottom: 10px;
    }

    text {
        font-size: 16px !important;
        font-weight: 500;
    }
}
