﻿.otp_box input {
    text-align: center;
    font-size: 20px !important;
}

@media only screen and (max-width: 767px) {
    .squre-frame {       
        width: 250px!important;
        height: 250px!important;      
    }

    .text-center1 {    
        font-size: 30px !important; 
    }
}
    /* Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Fullscreen Wrapper */
    .wrapper {
        position: fixed;
        top: 0;
        left: 0;
        background-color: black;
        width: 100%;
        height: 100vh;
        z-index: 999999;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    /* Rotating Frames */
    .squre-frame {
        position: absolute;
        width: 300px;
        height: 300px;
        border: 2px solid transparent;
        border-image: linear-gradient(to right, #7194d4, #042f79) 1;
        border-radius: 5px;
        animation: rotate 5s linear infinite;
    }

        .squre-frame:nth-child(2) {
            animation-delay: 0s;
        }

        .squre-frame:nth-child(3) {
            animation-delay: 0.4s;
        }

        .squre-frame:nth-child(4) {
            animation-delay: 0.8s;
        }

        .squre-frame:nth-child(5) {
            animation-delay: 1.2s;
        }

        .squre-frame:nth-child(6) {
            animation-delay: 1.6s;
        }

        .squre-frame:nth-child(7) {
            animation-delay: 2s;
        }

        .squre-frame:nth-child(8) {
            animation-delay: 2.4s;
        }

    /* Centered Glowing Text */
    .text-center1 {
        position: relative !important;
        z-index: 10 !important;
        color: #149fc7 !important;
        font-size: 40px;
        font-weight: bold !important;
        font-family: 'Pacifico', cursive !important;
        text-align: center;
        animation: glowText 2s ease-in-out infinite !important;
    }

    /* Text Glow Animation */
    @keyframes glowText {
        0% {
            text-shadow: 0 0 5px #149fc7;
        }

        50% {
            text-shadow: 0 0 10px #000, 0 0 15px #149fc7, 0 0 25px #00f;
        }

        100% {
            text-shadow: 0 0 5px #149fc7;
        }
    }

    /* Rotate Animation */
    @keyframes rotate {
        0% {
            transform: rotate(0deg);
            opacity: 0;
        }

        25% {
            opacity: 1;
        }

        100% {
            transform: rotate(360deg);
            opacity: 1;
        }
    }


    /*

#preloader {
    background-color: #fff;
    padding: 0;
    margin: 0;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    --rgba-primary-1: rgba(2, 115, 53, 0.1);
    --rgba-primary-2: rgba(2, 115, 53, 0.2);
    --rgba-primary-3: rgba(2, 115, 53, 0.3);
    --rgba-primary-4: rgba(2, 115, 53, 0.4);
    --rgba-primary-5: rgba(2, 115, 53, 0.5);
    --rgba-primary-6: rgba(2, 115, 53, 0.6);
    --rgba-primary-7: rgba(2, 115, 53, 0.7);
    --rgba-primary-8: rgba(2, 115, 53, 0.8);
    --rgba-primary-9: rgba(2, 115, 53, 0.9);
}

    #preloader .loader {
        height: 50px;
        margin: 30px auto 0;
        position: relative;
        display: flex;
        justify-content: center;
    }

        #preloader .loader span {
            background-color: #909090;
            height: 10px;
            width: 5px;
            border-radius: 5rem;
            transform: translateX(-50%) translateY(-50%);
            transition: all 0.15s ease-in-out;
            -webkit-transition: all 0.5s;
            -ms-transition: all 0.5s;
            transition: all 0.5s;
            margin: 0 5px;
        }

            #preloader .loader span:nth-child(1) {
                animation: waveUp 2s, smallExtend 2s;
                animation-timing-function: ease-in-out;
                animation-iteration-count: infinite;
            }

            #preloader .loader span:nth-child(2) {
                animation: waveUp 2s, largeExtend 2s;
                animation-timing-function: ease-in-out;
                animation-iteration-count: infinite;
                animation-delay: 0.15s;
            }

            #preloader .loader span:nth-child(3) {
                animation: waveUp 2s, smallExtend 2s;
                animation-timing-function: ease-in-out;
                animation-iteration-count: infinite;
                animation-delay: 0.3s;
            }

            #preloader .loader span:nth-child(4) {
                animation: waveUp 2s, largeExtend 2s;
                animation-timing-function: ease-in-out;
                animation-iteration-count: infinite;
                animation-delay: 0.45s;
            }

            #preloader .loader span:nth-child(5) {
                animation: waveUp 2s, smallExtend 2s;
                animation-timing-function: ease-in-out;
                animation-iteration-count: infinite;
                animation-delay: 0.6s;
            }
*/

.home-popup .modal-body {
    border: 8px solid #490fb4;
}

.home-popup .modal-content {
    position: relative;
}

.home-popup .btn-closes {
    position: absolute;
    top: -9px;
    right: -9px;
    z-index: 9;
    background: #da4bfd;
    color: white;
    border: none;
    padding: 0 10px;
    border-radius: 50%;
}