﻿#cat-spinner-main {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 16px;
    border: 1px solid #777;
    z-index: 99999;
    background-color: #fff;
    border-radius: 10px;
    height: 60px;
    margin-top: -30px;
    max-width: 90%;
    font-size: 1.5em;
    -webkit-box-shadow: 0px 0px 21px 0px rgba(0,0,0,0.46);
    -moz-box-shadow: 0px 0px 21px 0px rgba(0,0,0,0.46);
    box-shadow: 0px 0px 21px 0px rgba(0,0,0,0.46);
    display: none;
}

#cat-spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: .25;
    z-index: 99998;
    height: 100%;
    width: 100%;
    display: none;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
}

#cat-spinner-css-loader
{
	width: 30px;
	height: 30px;
	border: 8px solid #888;
	border-right-color: transparent;
	border-radius: 50%;
	box-shadow: 0 0 25px 2px #eee;
    animation: spin 1s linear infinite;
    position: absolute;
    right: 16px;
}

@keyframes spin
{
	from { transform: rotate(0deg);   opacity: 0.8; }
	50%  { transform: rotate(180deg); opacity: 1.0; }
	to   { transform: rotate(360deg); opacity: 0.8; }
}

#cat-spinner-message {
    position: absolute;
    width: 80%;
}

#cat-spinner-img-loader {
    background-image: url(img/ajax-loader.gif);
    background-repeat: no-repeat;
    height: 32px;
    width: 32px;
    float: right;
    border: 0;
    outline: none;
    content: "";
    position: absolute;
    right: 16px;
}