.gform_wrapper {
    transition: opacity 0.5s ease-in-out;
}
.popup-confirmation {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border-radius: 8px;
    text-align: center;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.popup-confirmation .checkmark {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4CAF50;
    margin-bottom: 15px;
    line-height: 50px;
    font-size: 30px;
    color: white;
}

.popup-confirmation p {
    font-size: 16px;
    color: #333;
    margin: 0;
}