﻿
.Splash {
    width: 40px;
    height: 40px;
    border: 5px solid #2C97D1;
    /*border-right: 5px solid #FFF;*/
    border-left: 5px solid #FFF;
    border-radius: 50%;
    animation: SplashAnimation;
    animation-timing-function: linear;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    display: none;
}


@keyframes SplashAnimation {
    from {
        transform: rotate(-360deg);
    }

    to {
        transform: rotate(0deg);
    }
}
