#contactUsSubmitDiv{
    display: flex;
    height: 75px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

#contactUsMessageSuccess {
    text-align: center;
    height: 230px;
    display: none;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
}

#contactUsMessageSuccess.show {
    display: flex;
    animation-name: contactUsMessageFadeIn;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}

@keyframes contactUsMessageFadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
}

#contactUsMessageTick.pop {
      animation: contactUsMessageTickPop 1s forwards;
}

@keyframes contactUsMessageTickPop {
      0% {
        transform: scale(0);
      }
      50% {
        transform: scale(1.2);
      }
      100% {
        transform: scale(1);
      }
}