﻿
#AJAXspinnerSearchResults {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    height: 100%;
    display: none;
    background-size: 100% 100%;
    background-image: url("https://assets.tigersheds.com/img/common/WhiteTrans.png");
}

#AJAXspinnerSearchResultsImage {
    width: 100px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 40%;
    margin-left: -90px;
    margin-right: -90px;
  margin-top:-50px;
    width: 180px;
    height: 210px;
    background-size: 100% 100%;
    background-image: url("https://assets.tigersheds.com/img/common/TigerSpin.png");
    animation-name: spin;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.spinner:after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    /*top: 50%;
    left: 50%;*/
    width: 20px;
    height: 20px;
    margin-top: -12px;
    margin-left: -10px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #000;
    animation: spinner 0.6s linear infinite;
}