/*==================================================================================
    Custom Stylesheet (Any custom styling you want to apply should be defined here).
====================================================================================*/

.blink_me {
    animation: blinker 3s linear infinite;
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }

  #success,#error {
    display:none
  }
  #success span,#erro span {
    display:block;
    position:absolute;
    top:0;
    width:100%
  }
  #success span p,#error span p {
    margin-top:6em
  }
  #success span p {
    color:#9bd32d;
  }
  #error span p {
    color:#c0392b;
  }
  .error.contactalert {
    text-transform:none;
    font-style:italic;
    display:inline-block;
  }
  