﻿.loading img { height: 24px; vertical-align: bottom; margin-right: 10px; transform: rotate(360deg); animation: rotation 3s linear infinite;}
.loading { text-align: center; font-size: 24px; height: 24px; color: #B28B7F !important; line-height: 24px; display:none;}

@keyframes rotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@media screen and (max-width: 641px){
    .loading img{height:16px;}
    .loading{font-size: 16px;height: 16px;line-height: 16px;}
}