﻿/*
    This file contains the CSS rules for the animation that would be triggered when a form is submitted.
*/

.gooey {
    position: absolute;
    left: 50%;
    margin: 0 0 0 -71px;
}

.gooey .dot {
    position: absolute;
    animation: dot 2.5s infinite;
}

.gooey .dots {
    margin-left: 31px;
    animation: dots 2.5s infinite;
}

    .gooey .dots span {
        float: left;
    }

.dot-content {
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background-color: #333333;
    border-radius: 50%;
}

@keyframes dot {
    50% {
        transform: translateX(96px);
    }
}

@keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}
