/* Loading/Waiting Spinners */

/* Spinner 1 - Standard: Top peice continually spinning */
.spinner-1:before {
    content: "";  /* what is this???? */
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 60px;
    width: 60px;
    margin-top: -30px; /* to truly center on page */
    Margin-left: -30px; /* to truly center on page */
    border-radius: 50%; /* makes a circle */
    border: 10px solid lightgray;
    border-top-color: coral;
    animation: spinner 0.7s linear infinite;
    z-index: 30;
}

/* Spinner 2 - Top and bottom peices pausing after each revolution */

.spinner-2:before{
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 60px;
    width: 60px;
    margin-top: -30px; /* to truly center on page */
    Margin-left: -30px; /* to truly center on page */
    border-radius: 50%; /* makes a circle */
    border: 10px solid transparent; /* makes the border invisible */
    border-top-color: #ff5f25; /* makes part of the circle */
    border-bottom-color: #ff5f25; /* makes part of the circle */
    animation: spinner 0.7s ease infinite; /* Pauses after each spin */
    z-index: 30;
}

/* Spinner 3 - Like a comet */

.spinner-3:before{
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 60px;
    width: 60px;
    margin-top: -30px; /* to truly center on page */
    Margin-left: -30px; /* to truly center on page */
    border-radius: 50%; /* makes a circle */
    border-top: 10px solid coral; /* makes the head of the comet */
    border-right: 10px solid transparent; /* makes the tail of the comet */
    animation: spinner 0.7s linear infinite; /* makes teh comet spin*/
    z-index: 30;
}

@keyframes spinner{
    to{
        transform: rotate(360deg);
    }
}