style.css 588 B

12345678910111213141516171819202122232425262728
  1. #reputationCTContainer .certaintrust-hti-f {
  2. display: none;
  3. }
  4. #spQualityCTContainer .certaintrust-hti-f {
  5. display: none;
  6. }
  7. .loader {
  8. border: 16px solid #f3f3f3;
  9. border-radius: 50%;
  10. border-top: 16px solid blue;
  11. border-bottom: 16px solid blue;
  12. width: 120px;
  13. height: 120px;
  14. -webkit-animation: spin 2s linear infinite;
  15. animation: spin 2s linear infinite;
  16. }
  17. @-webkit-keyframes spin {
  18. 0% { -webkit-transform: rotate(0deg); }
  19. 100% { -webkit-transform: rotate(360deg); }
  20. }
  21. @keyframes spin {
  22. 0% { transform: rotate(0deg); }
  23. 100% { transform: rotate(360deg); }
  24. }