/* || https://mail.google.com/mail/u/0/#inbox/WhctKKXgpNqZdvhZrzqTGfNNRSqmGZnGTGBvPvDZKGdVXlgPDCrtbDjGPZZzQBWfZRmKkRg

$form-feedback-valid-color:         $red;
$form-feedback-icon-valid-color:  $red; //$form-feedback-invalid-color;
*/
#loading {
  background-color: rgba(101, 129, 129, 0.45);
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  transition: all 0.2s;
  visibility: hidden;
  pointer-events: none;
}
#loading.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
#loading .centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#loading svg,
#loading .mdi {
  fill: #EA0029;
  color: #EA0029;
  width: 3rem;
  height: auto;
  font-size: 3rem;
  animation-name: loading_calculo;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center;
}
#loading #loadingText {
  color: white;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

@keyframes loading_calculo {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}