.spinner {
border: 2px solid #f3f3f3;
display: inline-block;
border-radius: 50%;
border-top: 2px solid #3498db;
width: 15px;
height: 15px;
position: relative;
top: 6px;
right: 6px;
-webkit-animation: spin 1s linear infinite;
animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.data{
padding-left: 15px;
}
.check{
display:inline-block;
padding-right: 12px;
}
.check:after{
content: '';
display: block;
width: 6px;
height: 11px;
border: solid #53b714;
border-width: 0 2px 2px 0;