﻿
.main_wait_page {
    pointer-events: none;
}

.date_text_fild {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
}

span#noofDays {
    margin-right: 5px;
}

.main_text_gif {
    width: 40%;
    padding: 20px 0px 0px 0px;
    box-shadow: 0 10px 30px 0 rgb(0 0 0 / 14%);
    border-radius: 20px;
    position: fixed;
    background: rgb(255 255 255);
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    overflow: hidden;
    text-align: center;
}

.wait_text h3 {
    font-weight: 600;
    margin-top: 0;
}

.main_text_gif img {
    margin: 0 auto;
}

.gif_img {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

ul.check_detail_ul li {
    width: auto;
    display: inline-block;
    text-align: center;
    text-transform: capitalize;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    margin: 0 auto;
}

ul.check_detail_ul {
    margin: 30px 0 0px 0;
    display: flex;
    font-weight: 400;
    background: #f5f5f5;
    padding: 20px;
}

.gif_img img {
    margin: 0 auto;
    max-width: 226px;
}

.wait_page_loader {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.wait_page_loader span {
    background: var(--Dark-bg);
    height: 15px;
    width: 15px;
    margin-left: 10px;
    border-radius: 50%;
    animation: moving 1s linear infinite alternate-reverse;
    animation-delay: calc(0.1s * var(--i));
}

@keyframes anima1 {
    0% {
        top: 0;
        left: 0;
    }

    25% {
        top: 0;
        left: calc(100% - 20px);
    }

    50% {
        top: calc(100% - 20px);
        left: calc(100% - 20px);
    }

    75% {
        top: calc(100% - 20px);
        left: 0;
    }

    100% {
        top: 0;
        left: 0;
    }
}

@keyframes anima2 {
    0% {
        top: 0;
        left: calc(100% - 20px);
    }

    25% {
        top: calc(100% - 20px);
        left: calc(100% - 20px);
    }

    50% {
        top: calc(100% - 20px);
        left: 0;
    }

    75% {
        top: 0;
        left: 0;
    }

    100% {
        top: 0;
        left: calc(100% - 20px);
    }
}

@keyframes anima3 {
    0% {
        top: calc(100% - 20px);
        left: calc(100% - 20px);
    }

    25% {
        top: calc(100% - 20px);
        left: 0;
    }

    50% {
        top: 0;
        left: 0;
    }

    75% {
        top: 0;
        left: calc(100% - 20px);
    }

    100% {
        top: calc(100% - 20px);
        left: calc(100% - 20px);
    }
}

@keyframes anima4 {
    0% {
        top: calc(100% - 20px);
        left: 0;
    }

    25% {
        top: 0;
        left: 0;
    }

    50% {
        top: 0;
        left: calc(100% - 20px);
    }

    75% {
        top: calc(100% - 20px);
        left: calc(100% - 20px);
    }

    100% {
        top: calc(100% - 20px);
        left: 0;
    }
}

body {
    margin: 0;
}

.wait_page_loader {
    height: 60px;
    width: 60px;
    position: relative;
    margin: auto;
}

.item_wait {
    position: absolute;
    border-radius: 50%;
    height: 20px;
    width: 20px;
}

.item_wait:nth-child(1) {
    background-color: var(--btn-bg);
    top: 0;
    left: 0;
    animation: anima1 2s ease infinite;
}

    .item_wait:nth-child(2) {
        background-color: var(--other-bg);
        top: 0;
        right: 0;
        animation: anima2 2s ease infinite;
    }

    .item_wait:nth-child(3) {
        background-color: var(--btn-bg);
        bottom: 0;
        left: 0;
        animation: anima3 2s ease infinite;
    }

.item_wait:nth-child(4) {
    background-color: coral;
    bottom: 0;
    right: 0;
    animation: anima4 2s ease infinite;
}

@media (max-width:767px) and (min-width:320px) {
    .main_text_gif {
        width: 95%;
    }

    .gif_img h3 {
        font-size: 20px;
    }

    .gif_img img {
        width: 50%;
    }
}

@media (max-width:1024px) and (min-width:768px) {
    .main_text_gif {
        width: 80%;
    }
}