.SpinnerLoader {
  display: none;
  border: 10px solid #CCCCCC;
  border-radius: 50%;
  border-top: 10px solid #009688;
  border-bottom: 10px solid #009688;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  margin: auto;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.5));
  }

  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

