﻿@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loaderAnimation2 {
    position: absolute;
    top: 45%;
    left: 45%;
    border: 60px solid #f0e6c3; /*Peach*/
    border-radius: 50%;
    border-top: 60px solid #98116d; /*Plum*/
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin-top: 0;
    margin-left: 0;
    z-index: 3;
}