div.kiki {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    height: 400px;
    /* background-color: #f0f2f5; */
    background-color:#eeeeee;
    margin: 0;
        margin-bottom: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#tpwl-tickets {
    min-height: 400px; /* same as height of loading element   */
}
/* Container simulation */
/*  #tpwl-tickets {
    width: 90%;
    max-width: 800px;
    height: 400px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
} */

/* The Loader Code */
.tpwl-custom-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tpwl-animation-box {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
}

/* Outer rotating ring */
.tpwl-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #f0f0f0;
    border-top: 4px solid #FC2B83;
    border-bottom: 4px solid #3d0d7f;
    border-radius: 50%;
    animation: tpwl-rotate 2s linear infinite;
}

/* Plane icon */
.tpwl-plane-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    fill: #3d0d7f;
    animation: tpwl-float 2s ease-in-out infinite;
}

/* Pulse effect */
.tpwl-pulse-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.tpwl-pulse-circles::before,
.tpwl-pulse-circles::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 2px solid #FC2B83;
    border-radius: 50%;
    opacity: 0;
    animation: tpwl-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.tpwl-pulse-circles::after {
    animation-delay: 1s;
}

@keyframes tpwl-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes tpwl-float {
    0%, 100% { transform: translate(-50%, -60%); }
    50% { transform: translate(-50%, -40%); }
}

@keyframes tpwl-ping {
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

.tpwl-status-text {
    color: #3d0d7f;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    text-align: center;
}

.tpwl-sub-text {
    color: #888;
    font-size: 14px;
    margin-top: 8px;
}

/* Dot animation */
.tpwl-dots::after {
    content: '';
    animation: tpwl-dots-anim 1.5s steps(4, end) infinite;
}

@keyframes tpwl-dots-anim {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}