.dialogue-box {
    position: absolute;
    top: 30%;
    left: 50%;
    z-index: 99999;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.62);
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 600px;
    padding: 20px;
    height: 150px;
    font-family: Arial, sans-serif;
}

.dialogue-box img {
    margin-bottom: 20px;
}

.dialogue-box p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

.dialogue-box.hidden {
    display: none;
}

.progress-bar {
    width: 50px;
    height: 50px;
    position: relative;
    margin: 0 auto;
}

.progress {
    width: 100%;
    height: 100%;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


