/* 
    Created on : Oct 12, 2022, 4:52:01 PM
    Author     : timothyheider
*/

.main-loader-block {
    width: 400px;
    height: 400px;
}

.main-loader-centered {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -100px;
}

.main-loader-loading {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

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

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


.lds-dual-ring {
  display: inline-block;
  width: 800px;
  height: 800px;
  z-index: 999;
  position: absolute;
}

.lds-dual-ring-show {
    display: block;
}

.lds-dual-ring-hide {
    display: none;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 16px solid #005;
  border-color: #005 transparent #005 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


