/* Form - Toast */
.toast-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translate(-50%, 10px);
    z-index: 9999;
    opacity: 0;
    padding: 0px 18px;
    opacity: 0;
    visibility: hidden;
}

.toast-mess {
    width: 100%;
    padding: 14px 24px;
    color: var(--white);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
    pointer-events: none;
}

.toast-text {
    font-size: 16px;
    font-weight: 500;
}

.toast-success {
    background-color: #4BB543;
    opacity: 1;
    visibility: visible;
}
.toast-error {
    background-color: #e74c3c;
    opacity: 1;
    visibility: visible;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    display: none;
}

/* Form - Toast - END */