/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .hidden-success-message .elementor-message.elementor-message-success {
    display: none;
 }

 .infinite-spinning {
    animation-name: loading;
    animation-duration: 700ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
 }

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