.cf7-loading {
opacity: 0.6;
cursor: not-allowed;
pointer-events: none;
position: relative;
}
.cf7-loading::after {
content: "…";
margin-left: 8px;
animation: dots 1s infinite;
}
@keyframes dots {
0% {
content: ".";
}
33% {
content: "..";
}
66% {
content: "...";
}
}